home *** CD-ROM | disk | FTP | other *** search
- on mouseEnter
- global chica
- if (chica <> "B") or (the currentSpriteNum <> 9) then
- cursor([cast "curs", cast "mask"])
- puppetSprite(the currentSpriteNum, 1)
- set the blend of sprite the currentSpriteNum to 50
- end if
- end
-
- on mouseLeave
- cursor(-1)
- set the blend of sprite the currentSpriteNum to 100
- end
-
- on mouseUp
- global chica
- cursor(-1)
- if (chica <> "B") or (the currentSpriteNum <> 9) then
- set pregunta to the name of cast the castNum of sprite the clickOn & chica
- set the blend of sprite the currentSpriteNum to 100
- repeat with x = 11 to 17
- puppetSprite(x, 0)
- set the visible of sprite x to 0
- end repeat
- puppetSound(0)
- go("video")
- set the visible of sprite 18 to 0
- puppetSprite(18, 1)
- set the castNum of sprite 18 to the number of member "blank"
- updateStage()
- set the castNum of sprite 18 to the number of member ("video" & pregunta)
- set the visible of sprite 18 to 1
- repeat with x = 12 to 16
- set the visible of sprite x to 1
- end repeat
- updateStage()
- end if
- end
-